home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
More Anime Pin-Up Beauties
/
More Anime Pin-Up Beauties.iso
/
pc
/
east
/
gpx05.dir
/
00196_Script_196
< prev
next >
Wrap
Text File
|
1998-06-22
|
2KB
|
83 lines
-- For PICT
-- ++++++++++++++++++++++++++++++++ get Picture & Display vMat of vBox
on dispPictBOX vName, vTyp
global gPathPict
global gPathLine
global gBOXnum
cursor 4
puppetSprite 20,TRUE
spriteBox 20, 640, 480, 640, 480
set the visibility of sprite 20 to FALSE
upDateStage
getPicture(the number of cast "BOX.PICT", vName)
setPictSprite(20, "BOX.PICT", 0)
if (vTyp = 1) then
spriteBox 20, 2, 28, 602, 478
end if
if (vTyp = 2) then
spriteBox 20, 2, 28, 370, 478
end if
set the visibility of sprite 20 to TRUE
cursor -1
upDateStage
-- ++++++++++++++++++++++++++++++++ get Picture & Display vNumber
on dispPictSLD vNumber
global gPathPict
global gPathLine
cursor 4
put item 2 of line vNumber of field "SLIDE.LIST" into vPorL
put value(item 4 of line vNumber of field "SLIDE.LIST") into vTyp
if vPorL = "P" then
put gPathPict & "P" & (item 3 of line vNumber of field "SLIDE.LIST") into vName
else
put gPathLine & "L" & (item 3 of line vNumber of field "SLIDE.LIST") into vName
end if
puppetSprite 20,TRUE
spriteBox 20, 640, 480, 640, 480
set the visibility of sprite 20 to FALSE
upDateStage
getPicture(the number of cast "SLD.PICT", vName)
setPictSprite(20, "SLD.PICT", 0)
if (vTyp = 1) then
spriteBox 20, 2, 28, 602, 478
end if
if (vTyp = 2) then
spriteBox 20, 118, 28, 118 + 368, 478
end if
set the visibility of sprite 20 to TRUE
cursor -1
upDateStage
-- ++++++++++++++++++++++++++++++++ erase Picture from stage
on erasePictBOX
cursor 4
spriteBox 20, 640, 480,640,480
set the visibility of sprite 20 to FALSE
clrPicture("BOX.PICT")
puppetSprite 20, FALSE
upDateStage
cursor -1
-- ++++++++++++++++++++++++++++++++ erase Picture from stage
on erasePictSLD
cursor 4
spriteBox 20, 640, 480,640,480
set the visibility of sprite 20 to FALSE
clrPicture("SLD.PICT")
puppetSprite 20, FALSE
upDateStage
cursor -1